Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
parse-filepath
Advanced tools
Parse a filepath into an object, yielding predictable results for basename and extname.
Parse a filepath into an object, yielding predictable results for basename and extname.
npm i parse-filepath --save
var parsePath = require('parse-filepath');
parsePath('foo/bar/baz/index.md.html');
// returns
{
name: 'index',
dirname: 'foo/bar/baz',
extname: '.md.html',
basename: 'index.md.html',
extSegments: ['.md', '.html']
}
Given the following string:
var str = 'foo/bar/baz/quux.min.js';
Node.js:
path.basename(str)
=> quux.min.js
path.basename(str, path.extname(str))
=> quux.min
whaaaaa!?parse-filepath:
parsePath(str).basename
=> quux.min.js
parsePath(str).name
=> quux
Node.js:
path.extname(str)
=> .js
parse-filepath
parsePath(str).extname
=> .min.js
Given the following string:
var str = 'foo/bar/.dotfile';
Node.js
path.basename(str)
=> .dotfile
path.extname(str)
=> .dotfile
parse-filepath
parsePath(str).basename
=> dotfile
parsePath(str).name
=> dotfile
parsePath(str).extname
=> ''
Jon Schlinkert
Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license
This file was generated by verb-cli on October 18, 2014.
FAQs
Pollyfill for node.js `path.parse`, parses a filepath into an object.
The npm package parse-filepath receives a total of 1,951,416 weekly downloads. As such, parse-filepath popularity was classified as popular.
We found that parse-filepath demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.